I am attempting to fire and output while an axis is
in motion and it passes a set position.
Currently I am using the following to make my move:
{
MoveAtVel(2,
steps, vel);
}while(!CheckDone(2));
I tried to read the position using this:
{
pos
= ch2->position;
if(pos
> setpos)
{
SetBit(45);
}
MoveAtVel(2,steps,
vel);
}while(!CheckDone(2));
but pos always shows 0.
I know I am total doing something wrong. (It's late and
been a long day.)
Is there an example I can look at or snippit of code
someone can show me?